example-sshCommandAlias Change-Id: I68dcb9281a7172a4c8118aa10101521757ee0441 
diff --git a/example-sshCommandAlias/BUCK b/example-sshCommandAlias/BUCK new file mode 100644 index 0000000..3cb5ddd --- /dev/null +++ b/example-sshCommandAlias/BUCK 
@@ -0,0 +1,18 @@ +include_defs('//bucklets/gerrit_plugin.bucklet') + +gerrit_plugin( + name = 'example-sshCommandAlias', + srcs = glob(['src/main/java/**/*.java']), + resources = glob(['src/main/**/*']), + manifest_entries = [ + 'Gerrit-PluginName: example-sshCommandAlias', + 'Gerrit-SshModule: com.googlesource.gerrit.plugins.examples.sshcommandalias.SshModule', + 'Implementation-Title: Example Ssh Command Alias', + 'Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/examples', + ], +) + +java_library( + name = 'classpath', + deps = [':example-sshCommandAlias__plugin'], +)